home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- // Insert script helper for:
-
- /**
- @Object: Package
- @Method: getDestinationFileList - returns a list of destination
- files.
- @Syntax: p.getDestinationFileList()
- @Summary: getDestinationFileList - returns a list of destination files
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("p.getDestinationFileList()", selection);
- editor.setActive("Insert p.getDestinationFileList");
- }
- }
-
- !!/Script
-